"일꾼이 일을 잘하려면 먼저 도구를 갈고 닦아야 한다." - 공자, 『논어』.
첫 장 > 프로그램 작성 > React에서 날씨 앱을 구축하는 방법

React에서 날씨 앱을 구축하는 방법

2024-11-08에 게시됨
검색:237

If you want to master crucial web development skills like working with API's, fetching data, and asynchronous functions such as async and await in React, then building a weather app is the best way to learn.

It is also a fun project since you get the see real-time weather and weather forecasts.

In this tutorial, we will use React to build a fully functional weather app that will show the weather for any city and as a 5-day weather forecast for the city.

In addition to knowing whether it will rain tomorrow ?, you will also learn these concepts:

  • How to communicate with external APIs
  • Data fetching in React 
  • Asynchronous operations and the mysteries of async and await.

By the end of this tutorial, you'll have build an app that looks something like this:

How to Build a Weather App in React

If you need to brush up on your React fundamentals, read this Tutorial:

Getting Started with React: A Beginner's Complete Guide

Let's get started.

Development Environment

Vite is a build tool designed for a faster and more efficient development experience. It comes with a dev server that enhances native ES modules with capabilities like extremely fast Hot Module Replacement (HMR) and a build command that utilizes Rollup to bundle code into highly optimized static assets for production.

In your terminal, issue this command which will create a new application called react-weather

npm create vite@latest react-weather

In the next step, select Reat as the framework and JavaScript as the variant.

How to Build a Weather App in React

Once Vite creates the application, cd into the react-weather folder and run npm install and npm run commands.

 cd react-weather
 npm install
 npm run dev

Now your application should be running at http://localhost:5173/

Building the Interface

We will start by building the UI, in your app.jsx file, and delete all the content in the returned fragment. Your app.jsx should now look like this:

import { useState } from 'react'
import './App.css'

function App() {

  return (
    

    >
  )
}

export default App

The UI will have 3 sections. 

  • Header: this will show the city, temperature, and weather conditions
  • Weather details section: this section will show the Humidity and wind speed
  • Forecast section: this will show the weather forecast for the next 5 days for each city. Each day will show the temperature and weather conditions (cloudy, sunny, overcast) and so on.

Inside the return statement, let's start by adding a wrapper div. This div element will contain all the sections:

import { useState } from 'react'
import './App.css'

function App() {

  return (
     
) } export default App

Inside the wrapper, add a header with an

to display the city, a

element for the temperature, and another/>for the overall weather condition.
import { useState } from "react";
import "./App.css";

function App() {
  return (
    

London

60°F

Cloudy

); } export default App;

In the details section, we want to display the humidity and the wind speed in a row, so each will be in its div element.

export default App;

import { useState } from "react";
import "./App.css";

function App() {
  return (
    

London

60°F

Cloudy

Humidity

60%

Wind Speed

7 mph

); }

Lastly, the forecast section will have a title and a couple of list items for each day. For the list items, let's start by displaying two days for now.

export default App;

import { useState } from "react";
import "./App.css";

function App() {
  return (
    

London

60°F

Cloudy

Humidity

60%

Wind Speed

7 mph

5-Day Forecast

Monday

Cloudy

12°F

Monday

Cloudy

12°F

); }

So far, our app now looks like this:

How to Build a Weather App in React

Styling with CSS

To make our interface beautiful, let's add some style, we will use CSS. In the main.jsx file, we already have this import which imports all the global styles for our app

import './index.css'

Let's start by styling the body by using flex.

body {
  min-height: 100vh;
  background: linear-gradient(to bottom right, #60a5fa, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-family: Arial, sans-serif;
}

Here, we have set justify-items:center and justify-content:centerto ensure all the content is centered horizontally and vertically.

For the wrapper, let's add a different background color, a min-width, a border-radious and a box shadow, and also a margin on all sides.

.wrapper {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  min-width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

Add a bigger font size to the city name and temperature elements and make them bold. The overall styles for the header elements will look like this:

.city {
  font-size: 2.5rem;
  font-weight: bold;
}
.temperature {
  font-size: 3.5rem;
  font-weight: bold;
}

.condition {
  font-size: 1.25rem;

}

To ensure the elements in the weather details section (i.e, humidity and wind speed) are aligned on the same row, use display: flex and justify-content: space-between; These are the styles for the weather detail and its elements:

.weather-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

Lastly, for the weather forecast section,add the following styles:

.forecast {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.forecast-header {
  font-size: 1.5rem;
  font-weight: bold;
}

.forecast-days {
  display: flex;
  justify-content: space-between;
}

.forecast-day {
  font-weight: bold;
}

.forecast-temp,
.forecast-condition {
  font-size: 0.875rem;
}

Now our App looks like this:

How to Build a Weather App in React

Get Real-Time Weather Data

So far we are using placeholder data, to get real-time weather information, we will use the openweather API. Head over to https://openweathermap.org/api and get a FREE API key.

Define the API_KEY.

 

function App() {

  const API_KEY ="your_api-key";

}

In a production environment, you should add sensitive data like API keys in a .env file.

Store Weather Data using State

In React, state is a crucial concept because it allows components to manage and respond to dynamic data. When you fetch data from an API, you need a way to store and manipulate that data within your component.

This is where state comes in.

Everything in a React component that can change over time is managed by the state. When the state changes, the React component will rerender and reflect the new changes.

For example, in our weather app, we want to get the current weather information for a specific city and store it in the state.

To do that, we will use the useState hook. The syntax for this hook looks like this:

const [value, setValue] = useState(initialValue);
  • value is the current state value.
  • setValue is a function that allows you to update the state.
  • initialValue is the value that the state starts with (it can be a number, string, object, or even an array).

Define the weather data state at the top of the App function. The initial value will be null

function App() {
  const [weatherData, setWeatherData] = useState(null);
}
  • weatherData will store the weather details
  • setWeather will update the weather details 

Define the state for the city and set the initial state variable of the city name to London

 const [city, setCity] = useState("london");

Fetch Data with the useEffect Hook

React by default has no way of handling side effects. Side effects are operations that occur outside of Reacts control such as asynchronous operations, local storage, e.t. c .

Since React components render when they mount, making an API request at this stage will not have access to the data yet since a fetch request takes time to complete.

In such cases, React uses the useEffect hook to perform side effects. The useEffect hook takes a function as the first parameter and a dependency array. Its syntax looks like this:

 useEffect(()=>{

  // perform side effects operations here

},[dependencies] )

The dependency array in the useEffect hook contains variables that determine when the effect should run. For example, in our case, the useEffect should run when the weather data changes rather than on every render.

Inside the useEffect, create an asynchronous function that will fetch the weather for a specific city from the Open weather API. Since it's an asynchronous operation, our function should also be asynchronous.

The function takes the cityName as the parameter

  useEffect(()=>{
    const fetchWeatherData = async (cityName) => {
      const url = `https://api.openweathermap.org/data/2.5/weather?q=${cityName}&appid=${API_KEY}&units=imperial`;
      const response = await fetch(url);
      const data = await response.json();

     }

  })

Once the data is fetched, use the setWeatherData setter function to update the state with the response data. Ensure to wrap your code in a try-catch block to handle any potential errors.

  useEffect(() => {
    const fetchWeatherData = async (cityName) => {
      try {
        const url = `https://api.openweathermap.org/data/2.5/weather?q=${cityName}&appid=${API_KEY}&units=imperial`;
        const response = await fetch(url);
        const data = await response.json();
        setWeatherData(data);
      } catch (error) {
        console.log(error);
      }
    };
  });

For the data to be fetched on mount, we need to invoke the fetch weather data function inside the useEffect.

When invoking the function, we will pass the value of the current city as the argument. This will ensure that when the app mounts for the first time, we already have some data to show for the value specified in the city state.

 useEffect(() => {
    const fetchWeatherData = async (cityName) => {
      try {
        const url = `https://api.openweathermap.org/data/2.5/weather?q=${cityName}&appid=${API_KEY}&units=imperial`;
        const response = await fetch(url);
        const data = await response.json();
        setWeatherData(data);
      } catch (error) {
        console.log(error);
      }
    };

    fetchWeatherData(city)
  });

If you check the logs with your developer tools, you will see that we are making multiple API requests on every render.

This is a very expensive operation,to prevent fetching on every render, we need to provide some dependencies to the useEffect. These dependencies will determine when an API call is made to the open weather API.

So let's add city in the dependency array to ensure API calls will only be made on the first mount or when the value of city changes.

  useEffect(() => {
    const fetchWeatherData = async (cityName) => {
      try {
        const url = `https://api.openweathermap.org/data/2.5/weather?q=${cityName}&appid=${API_KEY}&units=imperial`;
        const response = await fetch(url);
        const data = await response.json();
        setWeatherData(data);
        console.log(data);
      } catch (error) {
        console.log(error.message);
      }
    };

    fetchWeatherData(city)
  },[city]);

When we log the data, we get an object containing the weather details for the city of London.

{
    "coord": {
        "lon": -0.1257,
        "lat": 51.5085
    },
    "weather": [
        {
            "id": 801,
            "main": "Clouds",
            "description": "few clouds",
            "icon": "02d"
        }
    ],
    "base": "stations",
    "main": {
        "temp": 289.65,
        "feels_like": 289.16,
        "temp_min": 288.4,
        "temp_max": 290.92,
        "pressure": 1012,
        "humidity": 69,
        "sea_level": 1012,
        "grnd_level": 1008
    },
    "visibility": 10000,
    "wind": {
        "speed": 5.14,
        "deg": 270
    },
    "clouds": {
        "all": 20
    },
    "dt": 1729349117,
    "sys": {
        "type": 2,
        "id": 2075535,
        "country": "GB",
        "sunrise": 1729319499,
        "sunset": 1729357131
    },
    "timezone": 3600,
    "id": 2643743,
    "name": "London",
    "cod": 200
}

Now let's inject the weather details into the elements using JSX.

{weatherData && weatherData.main && weatherData.weather && (
  
    

{weatherData.name}

{weatherData.main.temp}°F

{weatherData.weather[0].main}

Humidity

{Math.round(weatherData.main.humidity)}%

Wind Speed

{Math.round(weatherData.wind.speed)} mph

> )}

In JavaScript, the expression condition && is used for conditional rendering within React components.

The && operator checks two conditions and returns true only if both conditions are true. In our case, if weatherDataexists, the specified data properties will be rendered.

If weatherData is null (or undefined), the elements will not be rendered, preventing any errors that could occur from trying to access properties of null.

Get and Display the Weather Forecast in React

To get the forecast, we will do another fetch request in the same useEffect Hook using this API https://api.openweathermap.org/data/2.5/forecast?q=${CITY}&appid=${API_KEY}&units=imperial

First, create a forecast state to store the forecast data and initialize the initial value to an empty array.

 const [forecast, setForecast] = useState([]);

Inside the fetchWeatherData function, make a fetch request to the above API, and set the forecast state to the response data.

  useEffect(() => {
    const fetchWeatherData = async (cityName) => {
      setCity(cityName);
      try {
        const url = `https://api.openweathermap.org/data/2.5/weather?q=${cityName}&appid=${API_KEY}&units=imperial`;
        const response = await fetch(url);
        const data = await response.json();
        setWeatherData(data);
        console.log(data);

        const foreCastresponse = await fetch(
          `https://api.openweathermap.org/data/2.5/forecast?q=${city}&appid=${API_KEY}&units=imperial`
        );
        const forecastdata = await foreCastresponse.json();

        const dailyForecast = forecastdata.list.filter(
          (item, index) => index % 8 === 0
        );
        setForecast(dailyForecast);
      } catch (error) {
        console.log(error.message);
      }
    };

    fetchWeatherData(city);
  }, [city]);

The forecast API usually returns the forecast after every 3 hours for the next 5 days, resulting into 40 data points, here is the truncated output.

{
    "cod": "200",
    "message": 0,
    "cnt": 40,
    "list": [
        {
            "dt": 1729360800,
            "main": {
                "temp": 59.92,
                "feels_like": 58.95,
                "temp_min": 56.59,
                "temp_max": 59.92,
                "pressure": 1013,
                "sea_level": 1013,
                "grnd_level": 1010,
                "humidity": 71,
                "temp_kf": 1.85
            },
            "weather": [
                {
                    "id": 801,
                    "main": "Clouds",
                    "description": "few clouds",
                    "icon": "02n"
                }
            ],
            "clouds": {
                "all": 17
            },
            "wind": {
                "speed": 3.29,
                "deg": 229,
                "gust": 5.64
            },
            "visibility": 10000,
            "pop": 0,
            "sys": {
                "pod": "n"
            },
            "dt_txt": "2024-10-19 18:00:00"
        },
        {
            "dt": 1729371600,
            "main": {
                "temp": 56.8,
                "feels_like": 55.85,
                "temp_min": 54.43,
                "temp_max": 56.8,
                "pressure": 1015,
                "sea_level": 1015,
                "grnd_level": 1012,
                "humidity": 78,
                "temp_kf": 1.32
            },
            "weather": [
                {
                    "id": 803,
                    "main": "Clouds",
                    "description": "broken clouds",
                    "icon": "04n"
                }
            ],
            "clouds": {
                "all": 59
            },
            "wind": {
                "speed": 4.09,
                "deg": 196,
                "gust": 10.11
            },
            "visibility": 10000,
            "pop": 0,
            "sys": {
                "pod": "n"
            },
            "dt_txt": "2024-10-19 21:00:00"
        },

The variable dt is a timestamp, so if we want to convert it to a human-readable time using the toLocaleDateString() method.

new Date(1729360800 * 1000).toLocaleDateString('en-US', { weekday: 'short' })

The output for this timestamp is sat

So for the array of 40 forecast items, we have used the filter function to filter based on the given (item, index) => index % 8 === 0condition.

(item, index) => index % 8 === 0: This condition means: "Only keep the forecast where the index is divisible by 8." Since the forecast is every 3 hours, every 8th item represents one forecast per day (3 hours × 8 = 24 hours).

So for example, given that the indices range from 0–39, every 8th index is added to the dailyForecast array. In total, we will have 5 instances of weather data.

Each weather forecast data point looks like this:

{
            "dt": 1729360800,
            "main": {
                "temp": 59.92,
                "feels_like": 58.95,
                "temp_min": 56.59,
                "temp_max": 59.92,
                "pressure": 1013,
                "sea_level": 1013,
                "grnd_level": 1010,
                "humidity": 71,
                "temp_kf": 1.85
            },
            "weather": [
                {
                    "id": 801,
                    "main": "Clouds",
                    "description": "few clouds",
                    "icon": "02n"
                }
            ],
            "clouds": {
                "all": 17
            },
            "wind": {
                "speed": 3.29,
                "deg": 229,
                "gust": 5.64
            },
            "visibility": 10000,
            "pop": 0,
            "sys": {
                "pod": "n"
            },
            "dt_txt": "2024-10-19 18:00:00"
        }

Since we have 5 instances, we will use the map() method to iterate and display the forecast for each day.

Update the forecast section as follows:

{forecast.length > 0 && (
  
    

5-Day Forecast

{forecast.map((day, index) => (

{new Date(day.dt * 1000).toLocaleDateString("en-US", { weekday: "short", })}

{day.weather[0].description}

{Math.round(day.main.temp)}°F

))}
> )}

Here, we are also checking if the forecast array contains data to ensure we don't loop over an empty array that will cause errors to pop up.

After checking the forecast data, we map over the forecast array and inject the following data for each day.

  • day of the week
  • weather icon
  • temperature

Now our App looks like this:

How to Build a Weather App in React

Get custom Weather Information

Our app looks great, but we still can't fetch dynamic data. Let's add a search form at the top to allow the users to get information about any city.

But first, we need a state for the input field. Declare the state with an empty string as the initial value.

 const [searchInput, setSearchInput] = useState("");

Create the form, bind the input to the searchInput state, and add the onChange event that will update the searchInput value when the user types a new city.

 
setSearchInput(e.target.value)} placeholder="Enter city name" className="search-input" />
{/* the rest of the code */}

Here are the styles for the form.

.form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.3); 
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
}

.search-input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 5px 0 0 5px;
  background-color: rgba(255, 255, 255, 0.2); 

  outline: none;
  transition: border-color 0.3s ease;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7); 
}

.search-input:focus {
  border-color: #3b82f6; 
}

.search-btn {
  padding: 10px 15px;
  font-size: 16px;
  color: white;
  background-color: #3b82f6; 
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

Since we need to invoke the weatherData function when the form is submitted, we will move the function definition outside the useEffect hook but still call it since the app needs to display some data for the initial city value when it mounts.

const fetchWeatherData = async (cityName) => {
    setCity(cityName);
    try {
      const url = `https://api.openweathermap.org/data/2.5/weather?q=${cityName}&appid=${API_KEY}&units=imperial`;
      const response = await fetch(url);
      const data = await response.json();
      setWeatherData(data);
      console.log(data);

      const foreCastresponse = await fetch(
        `https://api.openweathermap.org/data/2.5/forecast?q=${city}&appid=${API_KEY}&units=imperial`
      );
      const forecastdata = await foreCastresponse.json();

      const dailyForecast = forecastdata.list.filter(
        (item, index) => index % 8 === 0
      );

      setForecast(dailyForecast);
    } catch (error) {
      console.log(error.message);
    }
  };

useEffect(() => {
    fetchWeatherData(city);
  }, [city]);

Get Weather Data when the Form is Submitted

After a user searches for a city with a search form, we need to call another function that will invoke the fetchWeatherData with the new city and update the weatherData state to the weather information for the new city.

Add an onSubmitevent to the form and reference the function as shown below.

 
setSearchInput(e.target.value)} placeholder="Enter city name" className="search-input" />

When the form is submitted, it will fetch the weather information for the new city.

 function handleSearch(e) {
    e.preventDefault();
    fetchWeatherData(searchInput);
  }

Since the fetchWeatherData function already updates the new state of the weatherData state with the new data, we only invoke the function and pass the value of the new city from the user (searchInput).

Error Handling

When fetching data from API, various issues can occur. For example, in our case, the weather API might be down, or we might have an invalid API key, or we might have exhausted our daily API limit.

In this case, we need to add a proper error-handling mechanism so the user doesn't experience server errors.

For example, when the app loads for the first time, the forecast array will be empty, and the weatherData will be null. To ensure a good user experience, let's add error and loading states.

const [error, setError] = useState(null);
const [loading, setLoading] = useState(false)

In the fetchWeatherData function, just before any fetch happens, set the initial states of error and loading

  const fetchWeatherData = async (cityName) => {
    try {
     setLoading(true)
     setError(null)

     // the rest of the code

}

In the catch block, let's set the error state to a user-friendly message

} catch (error) {
    setError("Couldnt fetch data,please try again")

} finally {
    setLoading(false)

 }

In JavaScript, the finally clause in the try catch block is great for cleaning up. Regardless of the outcome of the API operation, we want to remove the loading state.

catch (error) {
    setError("Sorry, we couldn't retrieve the weather data at this time");

} finally {
    setLoading(false)

 }

To ensure the error and loading states are reflected in the UI, add this code just before the return statement

 if (loading) return 
Loading...

To display the error message if it occurs add this

tag after the form.
   {error && 

{error}

}

This condition ensures that if an error occurs, the error message stored in the state will be displayed.

Here is the app in loading state.

How to Build a Weather App in React

Here is the output when an error occurs.

How to Build a Weather App in React

Conclusion

We have come to the end of this tutorial. You can find the source code here.

If you found this tutorial a bit challenging, you might need to brush up on your React Fundamentals.

Get my Free React Guide and Level up.

Happy Coding.

릴리스 선언문 이 기사는 https://dev.to/vaatiesther/how-to-build-a-weather-app-in-react-48oj?1에서 복제됩니다.1 침해 내용이 있는 경우, [email protected]으로 연락하여 삭제하시기 바랍니다. 그것
최신 튜토리얼 더>
  • Lithe의 미들웨어: 작동 방식 및 자신만의 미들웨어를 만드는 방법
    Lithe의 미들웨어: 작동 방식 및 자신만의 미들웨어를 만드는 방법
    미들웨어는 애플리케이션에 들어오는 HTTP 요청을 검사하고 필터링하기 위한 편리한 메커니즘을 제공합니다. 예를 들어 Lithe에는 사용자가 인증되었는지 확인하는 미들웨어가 포함되어 있습니다. 그렇지 않은 경우 미들웨어는 사용자를 로그인 화면으로 리디렉션합니다. 사용자가...
    프로그램 작성 2024-11-08에 게시됨
  • JavaScript에서 반복되는 요소로 배열을 만드는 방법은 무엇입니까?
    JavaScript에서 반복되는 요소로 배열을 만드는 방법은 무엇입니까?
    JavaScript의 반복 요소 배열여러 번 반복되는 동일한 요소가 있는 배열을 만드는 것은 다양한 프로그래밍 시나리오에서 필수적입니다. Python에서는 [2] * 5와 같이 목록 곱셈을 통해 이를 달성할 수 있습니다. 그러나 이 기능은 JavaScript 배열에서 ...
    프로그램 작성 2024-11-08에 게시됨
  • ## MySQL의 LIKE와 LOCATE: 성능 측면에서 왕이 되는 연산자는 무엇입니까?
    ## MySQL의 LIKE와 LOCATE: 성능 측면에서 왕이 되는 연산자는 무엇입니까?
    MySQL LIKE 대 LOCATE 성능 비교MySQL에서 데이터를 검색할 때 LIKE와 LOCATE 중 어느 연산자가 더 효율적인지 궁금할 수 있습니다. 이 문서에서는 이 두 연산자 간의 성능 차이를 살펴봅니다.일반적인 사용 시나리오에서 LIKE는 LOCATE보다 약...
    프로그램 작성 2024-11-08에 게시됨
  • PHP를 사용하여 양식 데이터로 여러 MySQL 행을 업데이트하는 방법은 무엇입니까?
    PHP를 사용하여 양식 데이터로 여러 MySQL 행을 업데이트하는 방법은 무엇입니까?
    양식 데이터로 여러 MySQL 행 업데이트웹 개발에서는 사용자가 데이터베이스의 레코드를 편집할 수 있는 양식을 갖는 것이 일반적입니다. 일반적인 시나리오는 동일한 테이블의 여러 행을 수정된 데이터로 업데이트하는 것입니다. 이는 PHP와 MySQL을 사용하여 수행할 수 ...
    프로그램 작성 2024-11-08에 게시됨
  • Go에서 문자열에 []바이트를 할당할 수 없는 이유는 무엇입니까?
    Go에서 문자열에 []바이트를 할당할 수 없는 이유는 무엇입니까?
    바이트 할당 오류 이해: []바이트를 문자열에 할당할 수 없습니다.폴더 내의 파일을 읽으려고 시도하는 중에 오류가 발생했습니다. 파일의 내용을 읽으려고 할 때 "다중 할당에서 []바이트를 z(유형 문자열)에 할당할 수 없습니다." 이 오류의 원인을 자...
    프로그램 작성 2024-11-08에 게시됨
  • React 및 Typescript를 사용하여 사용자 정의 테이블 구성 요소를 만드는 방법(2부)
    React 및 Typescript를 사용하여 사용자 정의 테이블 구성 요소를 만드는 방법(2부)
    소개 예! ? 두 부분으로 구성된 이 시리즈의 마지막 부분에 도달했습니다! 아직 파트 1을 확인하지 않으셨다면 여기서 잠시 멈추고 먼저 파트 1을 살펴보세요. 걱정하지 마세요. 당신이 돌아올 때까지 기다리겠습니다! ? 1부에서는 CustomTable 구...
    프로그램 작성 2024-11-08에 게시됨
  • TypeScript 및 ioredis를 사용하여 Node.js에서 고성능 캐시 관리자 구축
    TypeScript 및 ioredis를 사용하여 Node.js에서 고성능 캐시 관리자 구축
    ioredis에 구축된 다용도의 사용하기 쉬운 캐시 관리자로 Node.js 앱 성능을 향상하세요. 캐싱을 단순화하고, 효율성을 최적화하고, 운영을 간소화하세요. 저는 사용 편의성과 성능에 중점을 두고 필요에 따라 ioredis를 기반으로 구축된 클래스를 개발했습니다. ...
    프로그램 작성 2024-11-08에 게시됨
  • 슈퍼클래스 참조 및 하위클래스 객체
    슈퍼클래스 참조 및 하위클래스 객체
    자바는 강력한 형식의 언어입니다. 기본 유형에는 표준 변환 및 자동 승격이 적용됩니다. 유형 호환성은 엄격하게 적용됩니다. 일반적으로 한 클래스의 참조 변수는 다른 클래스의 객체를 참조할 수 없습니다. 클래스 X와 Y가 구조적으로 동일하더라도 유형이 다르기 때문에 X...
    프로그램 작성 2024-11-08에 게시됨
  • Flexbox에서 flex-grow와 width는 어떻게 다릅니까?
    Flexbox에서 flex-grow와 width는 어떻게 다릅니까?
    Flexbox에서 flex-grow와 너비의 차이점Flexbox는 요소 간에 공간을 분배하는 두 가지 기본 방법인 flex-grow와 너비를 제공합니다. 효과적인 Flexbox 사용을 위해서는 이러한 속성 간의 차이점을 이해하는 것이 중요합니다.Flex-grow 대 너...
    프로그램 작성 2024-11-08에 게시됨
  • 양식 레이블과 입력을 같은 줄에 수평으로 정렬하는 방법은 무엇입니까?
    양식 레이블과 입력을 같은 줄에 수평으로 정렬하는 방법은 무엇입니까?
    양식 레이블의 수평 배치 및 동일한 행에 입력 달성웹 개발에서 양식의 미학은 사용자 경험에 매우 중요합니다. 레이블과 입력 필드를 같은 줄에 배열하면 양식의 가독성과 유용성을 향상시킬 수 있습니다. 이 문서에서는 길이에 관계없이 입력 요소를 해당 레이블과 원활하게 정렬...
    프로그램 작성 2024-11-08에 게시됨
  • 재귀 -1
    재귀 -1
    소개 1 함수가 자신을 호출하는 과정을 재귀라고 하며 해당 함수를 재귀 함수라고 합니다. 컴퓨터 프로그래밍은 수학의 기본적인 응용이므로 먼저 재귀 뒤에 숨어 있는 수학적 추론을 이해하려고 노력합니다. 일반적으로 우리 모두는 함수의 개념을 알고 있습니다...
    프로그램 작성 2024-11-08에 게시됨
  • Go API에 로깅 및 오류 처리 미들웨어 추가
    Go API에 로깅 및 오류 처리 미들웨어 추가
    빠른 참고: JWT 인증에 대한 이전 게시물을 확인하고 일부 렌더링 문제를 발견했다면 이제 해당 문제가 해결되었습니다! 이 예제는 해당 튜토리얼을 기반으로 구축되었으므로 다시 한 번 살펴보시기 바랍니다. :) 자 여러분, Go API를 실행하고 JWT 인증을 추가했으며...
    프로그램 작성 2024-11-08에 게시됨
  • Tensorflow 음악 예측
    Tensorflow 음악 예측
    이 글에서는 텐서플로우를 사용하여 음악 스타일을 예측하는 방법을 보여줍니다. 제 예에서는 테크노와 클래식 음악을 비교합니다. 내 Github에서 코드를 찾을 수 있습니다. https://github.com/victordalet/sound_to_partition ...
    프로그램 작성 2024-11-08에 게시됨
  • useEffect 후크 설명
    useEffect 후크 설명
    useEffect 후크는 React의 기본 부분으로, 기능적 구성 요소에서 부작용을 수행할 수 있도록 해줍니다. 자세한 내용은 다음과 같습니다. useEffect란 무엇인가요? useEffect 후크를 사용하면 구성 요소에서 데이터 가져오기, 구독 또는 ...
    프로그램 작성 2024-11-08에 게시됨
  • CSS 파일 경로의 버전 번호가 어떻게 웹사이트 성능을 향상시킬 수 있습니까?
    CSS 파일 경로의 버전 번호가 어떻게 웹사이트 성능을 향상시킬 수 있습니까?
    CSS 파일 경로의 버전 번호로 캐시 무효화웹 개발에서 사용자 경험을 향상하려면 CSS 파일과 같은 리소스를 효율적으로 로드해야 하는 경우가 많습니다. . 사용된 한 가지 영리한 기술은 특정 웹사이트에서 볼 수 있듯이 CSS 파일 경로에 버전 번호를 추가하는 것입니다:...
    프로그램 작성 2024-11-08에 게시됨

부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.

Copyright© 2022 湘ICP备2022001581号-3